.block_generic_gradient {
	direction: ltr;
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 3px;
	border: 1px solid #eee;
}

.block_generic_gradient .image_container {
	width: 100%;
}

.block_generic_gradient .image_container .image {
	width: 100%;
	padding: 40%;
	background-size: cover;
	background-position: center center;
	transition: 0.5s;
}

.block_generic_gradient:hover .image_container .image {
	transform: scale(1.05);
}

.block_generic_gradient .block_content {
	background: rgb(1,73,147);
	background: linear-gradient(0deg, rgba(1,73,147,1) 0%, rgba(255,255,255,0) 100%);
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 75%;
	padding: 10px;
	text-align: left;
	color: white;
	font-size: 13px;
	display: block;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-content: flex-end;
}

.block_generic_gradient .block_content:lang(ar) {
	direction: rtl;
	text-align: right;
	justify-content: right;
}

.block_generic_gradient .block_content h2 {
	width: 100%;
	margin: 5px 0 5px 0;
	padding: 0;
	font-size: 13px;
	font-weight: bold;
	line-height: 175%;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
}

.block_generic_gradient .block_content small {
	font-size: 11px;
	color: #c8c8c8;
}